home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gnome-applets.postrm < prev    next >
Encoding:
Text File  |  2007-03-12  |  845 b   |  40 lines

  1. #!/bin/sh
  2. # postrm script for gnome-cpufreq-selector 
  3.  
  4. set -e
  5.  
  6. prog=/usr/bin/cpufreq-selector
  7.  
  8. case "$1" in
  9.     purge)
  10.         if dpkg-statoverride --list $prog > /dev/null; then
  11.             dpkg-statoverride --remove $prog
  12.         fi;
  13.     ;;
  14.     remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  15.         ;;
  16.     *)
  17.             echo "postrm called with unknown argument \`$1'" >&2
  18.             exit 1
  19. esac
  20.  
  21. # Automatically added by dh_installdebconf
  22. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  23.     . /usr/share/debconf/confmodule
  24.     db_purge
  25. fi
  26. # End automatically added section
  27. # Automatically added by dh_gconf
  28. if which update-gconf-defaults >/dev/null 2>&1; then
  29.     update-gconf-defaults
  30. fi
  31. # End automatically added section
  32. # Automatically added by dh_makeshlibs
  33. if [ "$1" = "remove" ]; then
  34.     ldconfig
  35. fi
  36. # End automatically added section
  37.  
  38.  
  39. exit 0
  40.